home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 Super Collection / Windows 95 Super Collection.iso / win95 / bench / thread / thrdoptn.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-13  |  1.2 KB  |  48 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // CThreadOptionsDlg dialog
  3.  
  4. #include "resource.h"
  5.  
  6. class CThreadOptionsDlg : public CDialog
  7. {
  8. // Construction
  9. public:
  10.     CThreadOptionsDlg(CWnd* pParent = NULL);   // standard constructor
  11.  
  12. // Dialog Data
  13.     //{{AFX_DATA(CThreadOptionsDlg)
  14.     enum { IDD = IDD_THREAD_OPTIONS_DLG };
  15.     int        m_nThreadCount;
  16.     CString    m_strLogFilename;
  17.     BOOL    m_bLogOutput;
  18.     BOOL    m_bUseWindowPerThread;
  19.     //}}AFX_DATA
  20.  
  21.     DWORD m_dwThreadPriorityClass; 
  22.     int m_nTestType;
  23.     BOOL m_bUseMutexObjects;
  24.  
  25. // Overrides
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CThreadOptionsDlg)
  28.     protected:
  29.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  30.     //}}AFX_VIRTUAL
  31.  
  32. // Implementation
  33. protected:
  34.  
  35.     // Generated message map functions
  36.     //{{AFX_MSG(CThreadOptionsDlg)
  37.     afx_msg void OnLogOutputCheck();
  38.     virtual BOOL OnInitDialog();
  39.     afx_msg void OnBrowseLogBtn();
  40.     afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  41.     afx_msg void OnTimedGraphicsDemo();
  42.     afx_msg void OnUntimedGraphicsDemo();
  43.     afx_msg void OnPrimesDemo();
  44.     afx_msg void OnFpCalcDemo();
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.